const math.mask
14 uses
math (current package)
bits.go#L12: mask = 0x7FF
floor.go#L94: e := uint(bits>>shift) & mask
floor.go#L133: e := uint(bits>>shift) & mask
fma.go#L78: exp = int32(b>>52) & mask
frexp.go#L34: exp += int((x>>shift)&mask) - bias + 1
frexp.go#L35: x &^= mask << shift
ldexp.go#L33: exp += int(x>>shift)&mask - bias
ldexp.go#L48: x &^= mask << shift
logb.go#L51: return int((Float64bits(x)>>shift)&mask) - bias + exp
modf.go#L34: e := uint(x>>shift)&mask - bias
sqrt.go#L110: exp := int((ix >> shift) & mask)
sqrt.go#L119: ix &^= mask << shift
trig_reduce.go#L39: exp := int(ix>>shift&mask) - bias - shift
trig_reduce.go#L40: ix &^= mask << shift
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |